            /* user styles */

            /* styles are what change the color and sizes of stuff on your site. */

            /* these are variables that are being used in the code
    these tended to confuse some people, so I only kept 
    the images as variables */

    :root {
        --body-bg-image: url('../graphics/pluribusbg.png');
        font-family: Pixel Operator;
        src: url('PixelOperator.ttf');
        scrollbar-width: none;
        -ms-overflow-style: none;
        /* colors */
        
       
    }
    
   
    /* if you have the URL of a font, you can set it below */
    /* feel free to delete this if it's not your vibe */
  
    /* this seems like a lot for just one font and I would have to agree 
  but I wanted to include an example of how to include a custom font.
  If you download a font file you can upload it onto your Neocities
  and then link it! Many fonts have separate files for each style
  (bold, italic, etc. T_T) which is why there are so many!
  
  */
    @font-face {
        font-family: HelveticaNeue;
        src: url('HelveticaNeueMedium.otf')
    }
  
    @font-face {
      font-family: Forma DJR;
      src: url('FormaDJRText-Bold-Testing.ttf');
    }

    @font-face {
      font-family: Manifold;
      src: url('Fontspring-DEMO-manifoldextendedcf-bold.otf');
    }
  
    body {
        font-family: 'HelveticaNeue', sans-serif;
        margin: 0;
        background-color: #fbf7f5;
        /* you can delete the line below if you'd prefer to not use an image */
        font-size: 14px;
        color: #000104;
        background-image: var(--body-bg-image);
        background-size: cover;
        background-position: fixed;
        background-repeat: no-repeat;
        cursor: url('graphics/cursornormal.png'), default; 
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
  
    * {
      box-sizing: border-box;
      scrollbar-width:thin;
      -ms-overflow-style:none;
      scrollbar-color: #000080 #dfdfdf;
  }

  
    /* below this line is CSS for the layout */
  
    /* this is a CSS comment
  to uncomment a line of CSS, remove the * and the /
  before and after the text */
  
    /* the "container" is what wraps your entire website */
    /* if you want something (like the header) to be Wider than
  the other elements, you will need to move that div outside
  of the container */
    
        /* this is the width of your layout! */
        /* if you change the above value, scroll to the bottom
  and change the media query according to the comment! */
        
        /* this centers the entire page */
  
    #container {
      position: relative;
      display: grid;
      margin: auto;
      max-width: 1110px;
      max-height: 650px;
      grid-template-areas: 
      "header header header header"
      "main main main side"
      "main main main side"
      "footer footer footer side";
      grid-template-columns: 25% 25% 25% 25%;
      grid-template-rows: 150px 350px 400px 60px;
      gap: 10px;
      padding: 20px 75px 20px 20px;
    }
   
    #header {
        grid-area: header;
        background-color: #F0DC2F;
        border-radius: 15px;
        padding: 10px;
        font-size: 30px;
        font-family: 'Manifold', sans-serif;
        color: #000104;
    }

    #side {
      grid-area: side;
      background-color: #F0DC2F;
      border-radius: 15px;
      padding: 10px;
      color: #000104;
      overflow-x: hidden;
      overflow-y: scroll;
    }
  
    #footer {
      grid-area: footer;
      padding: 25px;
      font-size: smaller;
      z-index: 2;
      background-color: #fbf7f5;
      text-decoration-line: overline;
    }
  
  
    #main {
      grid-area: main;
      background-color: #fbf7f5;
      padding: 30px;
      padding-bottom: 60px;
      grid-row: span 3 / -1;
      overflow-y: scroll;
      overflow-x: hidden;
    }
  
    /* navigation section!! */
    #navbar {
        display: flex;
        align-items: left;
        padding-bottom: 10px;
    }
  
    /* navigation links*/
    #navtext button a {
        color: #000104;
        /* navbar text color */
        font-weight: 800;
        font-size: larger;
        text-decoration: none;
        border: #000080;
        /* this removes the underline */
    }
  
    /* navigation link when a link is hovered over */
    #navtext button a:hover {
        color: #000104;
        text-decoration: underline;
    }
  
    #flex {
        display: flex;
        flex-wrap: wrap;
    }
  
  
    /* this is the color of the main content area,
  between the sidebars! */
    main {
        background-color: transparent;
        flex: 1;
        padding: 10px;
        order: 2;
        max-height: 1180px;
        width: 100%;
        padding-left: 260px;
        overflow-y: scroll;
        overflow-x: hidden;
    }
  
    /* what's this "order" stuff about??
  allow me to explain!
  if you're using both sidebars, the "order" value
  tells the CSS the order in which to display them.
  left sidebar is 1, content is 2, and right sidebar is 3! */
  
    h1 {
        font-size: 25px;
        font-family: 'Forma DJR', sans-serif;
    }

    #main h1 {
      color: #235ba8;
    }

    #main .tablinks:hover{
      text-decoration: underline;
    }

    #footer .tablinks:hover{
      text-decoration: underline;
    }

    #side p {
      margin: 0;
    }

    button,
      input[type="submit"],
      input[type="reset"] {
      box-sizing: border-box;
      border: none;
      background: #fbf7f5;
      border-radius: 15px;
      min-width: 75px;
      min-height: 23px;
      padding: 0 12px;
      }
  
  ul {
    padding-left: 8px;
  }
  
  ul li {
    list-style-type: none;
    font-size: 25px;
    padding-left: 20px;
    color: #000104;
  }
    hr {
      border: none;
      margin: 0;
      border-bottom: 2px solid #fbf7f5;
      color: transparent;
      background-color: transparent;
      height: 1px;
      width: auto;
    }
  
    marquee img {
      margin-left: 10px;
    }
  
    /* CSS for extras */
  
    .tooltip {
      display: inline-block;
      width: 100%;
    }
  
    .tooltip .tooltiptext {
      visibility: hidden;
      box-sizing: border-box;
      border: none;
      width: 120px;
      right: 70%;
      color: #222222;
      text-shadow: 0 0 var(--text-color);
      background: var(--surface);
      box-shadow: var(--border-raised-outer), var(--border-raised-inner);
      border-radius: 0;
      text-align: center;
      padding: 3px 0;
      position: absolute;
      z-index: 3;
    }
  
    .tooltip:hover .tooltiptext {
      visibility: visible;
    }
  
    /* BELOW THIS POINT IS MEDIA QUERY */
  
    /* so you wanna change the width of your page? 
  by default, the container width is 900px.
  in order to keep things responsive, take your new height,
  and then subtrack it by 100. use this new number as the 
  "max-width" value below
  */
  
    @media only screen and (max-width: 500px) {
        #flex {
            flex-wrap: wrap;
        }
  
        aside {
            width: auto;
        }
  
        /* the order of the items is adjusted here for responsiveness!
  since the sidebars would be too small on a mobile device.
  feel free to play around with the order!
  */
        main {
            order: 2;
            padding-left: 10px;
        }
  
        #navbar {
          display: flex;
          justify-content: space-between;
          align-items: center;
          padding: 5px;
      }
    
        #main,
        #side {
          margin: 10px 0px;
        }
  
        #container {
          display: block;
          padding: 0px;
          margin: 20px;
          overflow-y: scroll;
        }
  
        #rightSidebar {
            order: 3;
            width: auto
        }
  
        .window-body {
            flex-wrap: wrap;
        }
  
        #deco {
          display: none;
        }
  
  
        #extraSideLeft {
          float: left;
          background-color: transparent;
          width: 310px;
          height: 650px;
          padding: 20px;
          font-size: smaller;
          display: none;
        }
  
        #extraSideRight {
          float: right;
          background-color: transparent;
          width: 310px;
          height: 650px;
          padding: 20px;
          font-size: smaller;
          display: none;
        }
  
    }
  
    .filterDiv {
        float: none;
        background-color: #222222;
        border: 1px solid #cd9923;
        padding: 10px;
        margin: 15px;
        display: none;
        font-family: Pixel Operator;
              src: url('PixelOperator.ttf');
      }
      
      .show {
        display: block;
      }
      
      .container {
        margin-top: 10px;
        overflow: hidden;
      }
  
  
      .row {
        display: flex;
        flex-wrap: wrap;
        padding: 0 4px;
      }
      
      /* Create four equal columns that sits next to each other */
      .column {
        flex: 25%;
        max-width: 50%;
        padding: 0 4px;
      }
      
      .column img {
        vertical-align: middle;
        width: 100%;
      }
      
      /* Responsive layout - makes a two column-layout instead of four columns */
      @media (max-width: 800px) {
        .column {
          flex: 50%;
          max-width: 50%;
        }
      }
      
      /* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
      @media (max-width: 600px) {
        .column {
          flex: 100%;
          max-width: 100%;
        }
      }
  